home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE23
/
PZAZZDEM
/
PZAZZDEM.ZIP
/
VCL32
/
PZAZZ.PAS
next >
Wrap
Pascal/Delphi Source File
|
1997-03-03
|
629b
|
27 lines
unit Pzazz;
interface
Uses Classes,DsgnIntf,PZItemEd,PZColsEd,PZLabel,PZShaded,PZBPanel,PZSpButt,PZLView,PZTView,PZBitBtn;
procedure Register;
implementation
{$IFNDEF WIN32}
{$R PZAZZ16.DCR}
{$ELSE}
{$R PZAZZ32.RES}
{$ENDIF}
procedure Register;
Begin
RegisterComponents('Pzazz!',[TPZLabel,TPZShaded,TPZBitmapPanel,TPZSpeedButton,
TPZBitmapButton,TPZListView,TPZTreeView]);
RegisterPropertyEditor(TypeInfo(TStrings),TPZListView,'Items',TPZItemListProperty);
RegisterPropertyEditor(TypeInfo(TPZColumns),TPZListView,'Columns',TPZColumnsProperty);
End;
end.